home *** CD-ROM | disk | FTP | other *** search
- on mouseDown
- global gCalNum, gSetNum, gLastNum, gOperation, gAnswer
- if gAnswer = 1 then
- set gSetNum to 0
- set gCalNum to 0
- set gAnswer to 0
- end if
- if the number of chars in string(gCalNum) >= 9 then
- exit
- end if
- set lNum to the clickOn - 14
- if (gCalNum = 0) and (lNum = 0) then
- DrawNum()
- exit
- end if
- set lText to EMPTY
- repeat with i = 1 to the number of chars in string(gCalNum)
- put char i of string(gCalNum) after lText
- end repeat
- put lNum after lText
- set gCalNum to value(lText)
- DrawNum()
- end
-